home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Classicos / Pac Man white.swf / scripts / DefineButton2_151 / BUTTONCONDACTION on(press).as
Encoding:
Text File  |  2006-06-13  |  214 b   |  14 lines

  1. on(press){
  2.    page += 10;
  3.    if(page > maxScore)
  4.    {
  5.       page = maxScore;
  6.    }
  7.    if(page > maxScore - 20)
  8.    {
  9.       next_btn._visible = false;
  10.    }
  11.    last_btn._visible = true;
  12.    showScores();
  13. }
  14.